def add(a,b):
return a + b
add(10,2)
關鍵字用def
注意縮排、冒號
執行結果
12
BMI為範例
def bmi(weight,height):
cal = weight / (height **2)
return cal
inputW,inputH = input("輸入體重kg,身高cm:").split(",")
print ("您的BMI為:"+ str(bmi(eval(inputW),eval(inputH)/100)))
執行結果: